home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19950726-19950929 / 000182_news@columbia.edu_Fri Aug 18 05:42:40 1995.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA06687
  2.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 19 Aug 1995 04:24:20 -0400
  3. Received: by apakabar.cc.columbia.edu id AA25005
  4.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 19 Aug 1995 04:24:18 -0400
  5. Path: news.columbia.edu!news.cs.columbia.edu!news.boxhill.com!news.sprintlink.net!newsfeed.internetmci.com!us.oracle.com!news.caldera.com!news.cc.utah.edu!news.cs.utah.edu!cc.usu.edu!jrd
  6. From: jrd@cc.usu.edu (Joe Doupnik)
  7. Newsgroups: comp.protocols.kermit.misc
  8. Subject: Re: wy50 stdout mode in mskermit
  9. Message-Id: <1995Aug18.114240.59236@cc.usu.edu>
  10. Date: 18 Aug 95 11:42:40 MDT
  11. References: <412h3i$8u3@ddi2.digital.net>
  12. Organization: Utah State University
  13. Lines: 32
  14. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  15.  
  16. In article <412h3i$8u3@ddi2.digital.net>, rac@digital.net (Roger Cornelius) writes:
  17. > I'm using mskermit 3.14 on an IBM clone with set term type wyse50 to
  18. > connect to a UNIX system.  Kermit's wy50 emulation doesn't appear
  19. > to include stdout mode, or at least I can't figure out how to get
  20. > it working.  This makes it very difficult to work in applications
  21. > which rely on highlighting.
  22. > Is there some way to get stdout mode to work in wyse50 mode, either
  23. > via reverse video or underline?
  24. --------
  25.  
  26.     I can't speak for your termcap/terminfo material. However, here
  27. is the section of Kermit's Wyse50 doc on the matter:
  28.  
  29. WYSE ESCAPE SEQUENCE           DESCRIPTION OF ACTION (* = Not Supported)
  30.  
  31. ESC <space>                    report terminal ident, send 3 bytes "50<c/r>"
  32. ESC ! attrib                   writes all unprotected cells with attribute
  33.                    code attrib (Blank attribute is ignored)
  34.           attrib        action
  35.          0        normal video
  36.          1           *blank
  37.          2        blink
  38.          3           *blank
  39.          4        reverse video
  40.          8        underscore
  41.         40h        dim
  42.             (attrib is a byte with these bits as components,
  43.              using a bias of ASCII "0", 30h)
  44.  
  45.  
  46.     Joe D.